.line_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customAlert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.customAlert .custom-cover {
    width: 100%;
    height: 100%;
    background: #656565;
    background: rgba(0, 0, 0, 0.58);
}

.customAlert .custom-content {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -150px;
    width: 300px;
    background: #fff;
    border-radius: 5px;
    padding: 30px 30px 14px;
}

.customAlert .custom-content .custom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: url(../../images/customAlert-close-icon.png) no-repeat center center;
    cursor: pointer;
}

.customAlert .custom-content .custom-icon {
    margin-left: 7px;
    width: 58px;
}

.customAlert .custom-content .custom-msg {
    margin-top: 10px;
    font-size: 16px;
    color: #404040;
    line-height: 30px;
    text-align: center;
}

.customAlert .custom-content .login-items {
    margin: 10px 0 17px;
}

.customAlert .custom-content .login-items .login-item {
    display: block;
    margin: 0 auto;
    width: 140px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    background: #56abff;
    text-align: center;
    font-weight: bold;
}

.customAlert .custom-content .login-items .login-item.key-down {
    background: #3c78b3;
    color: #55a8fb;
}

.customAlert .custom-content .login-items .login-item:hover {
    box-shadow: 0 4px 6px rgba(78, 154, 230, .5);
}

.customAlert .custom-content .login-items .login-item.mobile {
    display: none;
}

.customAlert .custom-content .login-items .login-item.right {
    float: right;
}

.customAlert .custom-content .login-items .login-item .login-item-name {
    margin-top: 5px;
    font-size: 15px;
    color: #999;
    font-weight: bold;
    line-height: 28px;
}

.customAlert .custom-content .login-items .login-item .login-item-text {
    /* margin: 6px 0;
    display: inline-block;
    font-size: 12px;
    color: #56abff;
    border-bottom: 1px solid #56abff; */
}

.customAlert .custom-content .custom-des {
    font-size: 12px;
    color: #333;
    line-height: 20px;
    text-align: center;
}

.customAlert .custom-content .custom-des .to-register {
    color: #56abff;
    border-bottom: 1px solid #56abff;
}

.customAlert .custom-content .custom-des .to-register.mobile {
    display: none;
}

@media (max-width: 767px) {
    body {
        padding: 0;
    }

    input[type=button] {
        -webkit-appearance: none;
    }

    .customAlert .custom-content .login-items .login-item.mobile {
        float: none;
        display: block;
        margin: 0 auto;
    }

    .customAlert .custom-content .custom-des .to-register.mobile {
        display: inline;
    }

    .customAlert .custom-content .custom-des .to-register.pc {
        display: none;
    }
}
